Use insensitive state for insensitive arrows, not just an "etched state".
authorOwen Taylor <otaylor@redhat.com>
Thu, 24 Jan 2002 01:36:39 +0000 (01:36 +0000)
committerOwen Taylor <otaylor@src.gnome.org>
Thu, 24 Jan 2002 01:36:39 +0000 (01:36 +0000)
Wed Jan 23 20:28:59 2002  Owen Taylor  <otaylor@redhat.com>

* gtk/gtknotebook.c (gtk_notebook_draw_arrow):
Use insensitive state for insensitive arrows, not
just an "etched state". (#67172, Adrian Custer)

ChangeLog
ChangeLog.pre-2-0
ChangeLog.pre-2-10
ChangeLog.pre-2-2
ChangeLog.pre-2-4
ChangeLog.pre-2-6
ChangeLog.pre-2-8
gtk/gtknotebook.c

index 35328725c5b720b9c32edbe74e05b064eb375df3..ce91881309f0fb4d2c154b689282f3512913c1ac 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Wed Jan 23 20:28:59 2002  Owen Taylor  <otaylor@redhat.com>
+
+       * gtk/gtknotebook.c (gtk_notebook_draw_arrow): 
+       Use insensitive state for insensitive arrows, not
+       just an "etched state". (#67172, Adrian Custer)
+
 2002-01-23  Manish Singh  <yosh@gimp.org>
 
        * gtk/gtkentry.c (gtk_entry_set_text): use a variable that's actually
index 35328725c5b720b9c32edbe74e05b064eb375df3..ce91881309f0fb4d2c154b689282f3512913c1ac 100644 (file)
@@ -1,3 +1,9 @@
+Wed Jan 23 20:28:59 2002  Owen Taylor  <otaylor@redhat.com>
+
+       * gtk/gtknotebook.c (gtk_notebook_draw_arrow): 
+       Use insensitive state for insensitive arrows, not
+       just an "etched state". (#67172, Adrian Custer)
+
 2002-01-23  Manish Singh  <yosh@gimp.org>
 
        * gtk/gtkentry.c (gtk_entry_set_text): use a variable that's actually
index 35328725c5b720b9c32edbe74e05b064eb375df3..ce91881309f0fb4d2c154b689282f3512913c1ac 100644 (file)
@@ -1,3 +1,9 @@
+Wed Jan 23 20:28:59 2002  Owen Taylor  <otaylor@redhat.com>
+
+       * gtk/gtknotebook.c (gtk_notebook_draw_arrow): 
+       Use insensitive state for insensitive arrows, not
+       just an "etched state". (#67172, Adrian Custer)
+
 2002-01-23  Manish Singh  <yosh@gimp.org>
 
        * gtk/gtkentry.c (gtk_entry_set_text): use a variable that's actually
index 35328725c5b720b9c32edbe74e05b064eb375df3..ce91881309f0fb4d2c154b689282f3512913c1ac 100644 (file)
@@ -1,3 +1,9 @@
+Wed Jan 23 20:28:59 2002  Owen Taylor  <otaylor@redhat.com>
+
+       * gtk/gtknotebook.c (gtk_notebook_draw_arrow): 
+       Use insensitive state for insensitive arrows, not
+       just an "etched state". (#67172, Adrian Custer)
+
 2002-01-23  Manish Singh  <yosh@gimp.org>
 
        * gtk/gtkentry.c (gtk_entry_set_text): use a variable that's actually
index 35328725c5b720b9c32edbe74e05b064eb375df3..ce91881309f0fb4d2c154b689282f3512913c1ac 100644 (file)
@@ -1,3 +1,9 @@
+Wed Jan 23 20:28:59 2002  Owen Taylor  <otaylor@redhat.com>
+
+       * gtk/gtknotebook.c (gtk_notebook_draw_arrow): 
+       Use insensitive state for insensitive arrows, not
+       just an "etched state". (#67172, Adrian Custer)
+
 2002-01-23  Manish Singh  <yosh@gimp.org>
 
        * gtk/gtkentry.c (gtk_entry_set_text): use a variable that's actually
index 35328725c5b720b9c32edbe74e05b064eb375df3..ce91881309f0fb4d2c154b689282f3512913c1ac 100644 (file)
@@ -1,3 +1,9 @@
+Wed Jan 23 20:28:59 2002  Owen Taylor  <otaylor@redhat.com>
+
+       * gtk/gtknotebook.c (gtk_notebook_draw_arrow): 
+       Use insensitive state for insensitive arrows, not
+       just an "etched state". (#67172, Adrian Custer)
+
 2002-01-23  Manish Singh  <yosh@gimp.org>
 
        * gtk/gtkentry.c (gtk_entry_set_text): use a variable that's actually
index 35328725c5b720b9c32edbe74e05b064eb375df3..ce91881309f0fb4d2c154b689282f3512913c1ac 100644 (file)
@@ -1,3 +1,9 @@
+Wed Jan 23 20:28:59 2002  Owen Taylor  <otaylor@redhat.com>
+
+       * gtk/gtknotebook.c (gtk_notebook_draw_arrow): 
+       Use insensitive state for insensitive arrows, not
+       just an "etched state". (#67172, Adrian Custer)
+
 2002-01-23  Manish Singh  <yosh@gimp.org>
 
        * gtk/gtkentry.c (gtk_entry_set_text): use a variable that's actually
index d1f725d2930255c8cc38c438524313a62d2256d5..ff90de2b2a565fae3f37758703508c3e837ea88b 100644 (file)
@@ -2713,7 +2713,7 @@ gtk_notebook_draw_arrow (GtkNotebook *notebook,
                                         STEP_PREV, TRUE))
            {
              shadow_type = GTK_SHADOW_ETCHED_IN;
-             state_type = GTK_STATE_NORMAL;
+             state_type = GTK_STATE_INSENSITIVE;
            }
 
          if (notebook->tab_pos == GTK_POS_LEFT ||
@@ -2732,7 +2732,7 @@ gtk_notebook_draw_arrow (GtkNotebook *notebook,
                                         STEP_NEXT, TRUE))
            {
              shadow_type = GTK_SHADOW_ETCHED_IN;
-             state_type = GTK_STATE_NORMAL;
+             state_type = GTK_STATE_INSENSITIVE;
            }
 
          if (notebook->tab_pos == GTK_POS_LEFT ||